home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
fndation.arc
/
F.BAT
< prev
next >
Wrap
DOS Batch File
|
1985-11-21
|
783b
|
37 lines
echo off
cls
c:
cd\dos
if ''=='%' goto help
if 'l'=='%' goto low
if 'h'=='%' goto high
goto end
HIGH
echo You are about to format a 1.2 Megabyte
echo (HI-CAPACITY) floppy disk in drive a:
echo This will wipe out all information (if any) that exists on
echo the disk. Do you want to continue?
query
if not errorlevel 1 goto end
cls
format a:
got end
LOW
echo You are about to format a 360k
echo (LOW-CAPACITY) floppy disk in drive a:
echo This will wipe out all information (if any) that exists on
echo the disk. Do you want to continue?
query
if not errorlevel 1 goto end
cls
format a:/4
goto end
help
echo You forgot to specify which KIND of diskette to format:
echo EXAMPLES: f h
echo f l
pause
end
cls
type menu.txt